home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / ADA / GNAT / !gcc / adainc / 3 / adb / g-casuti < prev    next >
Text File  |  1996-02-12  |  4KB  |  108 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                         GNAT RUNTIME COMPONENTS                          --
  4. --                                                                          --
  5. --                       G N A T . C A S E _ U T I L                        --
  6. --                                                                          --
  7. --                                 B o d y                                  --
  8. --                                                                          --
  9. --                            $Revision: 1.2 $                              --
  10. --                                                                          --
  11. --              Copyright (C) 1995 Ada Core Technologies, Inc.              --
  12. --                                                                          --
  13. -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  14. -- terms of the  GNU General Public License as published  by the Free Soft- --
  15. -- ware  Foundation;  either version 2,  or (at your option) any later ver- --
  16. -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  17. -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  18. -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
  19. -- for  more details.  You should have  received  a copy of the GNU General --
  20. -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
  21. -- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
  22. -- MA 02111-1307, USA.                                                      --
  23. --                                                                          --
  24. -- As a special exception,  if other files  instantiate  generics from this --
  25. -- unit, or you link  this unit with other files  to produce an executable, --
  26. -- this  unit  does not  by itself cause  the resulting  executable  to  be --
  27. -- covered  by the  GNU  General  Public  License.  This exception does not --
  28. -- however invalidate  any other reasons why  the executable file  might be --
  29. -- covered by the  GNU Public License.                                      --
  30. --                                                                          --
  31. -- GNAT was originally developed  by the GNAT team at  New York University. --
  32. -- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
  33. --                                                                          --
  34. ------------------------------------------------------------------------------
  35.  
  36. package body GNAT.Case_Util is
  37.  
  38.    --------------
  39.    -- To_Lower --
  40.    --------------
  41.  
  42.    function To_Lower (A : Character) return Character is
  43.       A_Val : constant Natural := Character'Pos (A);
  44.  
  45.    begin
  46.       if A in 'A' .. 'Z'
  47.         or else A_Val in 16#C0# .. 16#C6#
  48.         or else A_Val in 16#C8# .. 16#CE#
  49.       then
  50.          return Character'Val (A_Val + 16#20#);
  51.       else
  52.          return A;
  53.       end if;
  54.    end To_Lower;
  55.  
  56.    procedure To_Lower (A : in out String) is
  57.    begin
  58.       for J in A'Range loop
  59.          A (J) := To_Lower (A (J));
  60.       end loop;
  61.    end To_Lower;
  62.  
  63.    --------------
  64.    -- To_Mixed --
  65.    --------------
  66.  
  67.    procedure To_Mixed (A : in out String) is
  68.       Ucase : Boolean := True;
  69.  
  70.    begin
  71.       for J in A'Range loop
  72.          if Ucase then
  73.             A (J) := To_Upper (A (J));
  74.          else
  75.             A (J) := To_Lower (A (J));
  76.          end if;
  77.  
  78.          Ucase := A (J) = '_';
  79.       end loop;
  80.    end To_Mixed;
  81.  
  82.    --------------
  83.    -- To_Upper --
  84.    --------------
  85.  
  86.    function To_Upper (A : Character) return Character is
  87.       A_Val : constant Natural := Character'Pos (A);
  88.  
  89.    begin
  90.       if A in 'a' .. 'z'
  91.         or else A_Val in 16#E0# .. 16#F6#
  92.         or else A_Val in 16#F8# .. 16#FE#
  93.       then
  94.          return Character'Val (A_Val - 16#20#);
  95.       else
  96.          return A;
  97.       end if;
  98.    end To_Upper;
  99.  
  100.    procedure To_Upper (A : in out String) is
  101.    begin
  102.       for J in A'Range loop
  103.          A (J) := To_Upper (A (J));
  104.       end loop;
  105.    end To_Upper;
  106.  
  107. end GNAT.Case_Util;
  108.